home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OctaMED Sound Studio 1
/
OctaMED SoundStudio V1.iso
/
docs
/
rexx
/
killtrack.omed
< prev
next >
Wrap
Text File
|
1996-06-18
|
398b
|
20 lines
/* Kill track */
'wi_request "Kill track?" "Full track|Only following notes|Cancel" var answer'
select
when answer=2 then do
op_update off
'ed_killnotes currtrack'
op_update on
wi_showstring "Killed."
end
when answer=1 then do
op_update off
ed_getcurrline var currline
ed_goto line 0
'ed_killnotes currtrack'
ed_goto line currline
op_update on
wi_showstring "Killed."
end
otherwise
end